home *** CD-ROM | disk | FTP | other *** search
- #
- # (C) Tenable Network Security
- #
-
-
- if(description)
- {
- script_id(14785);
- script_bugtraq_id(11193, 11658);
- script_version("$Revision: 1.3 $");
- name["english"] = "vBulletin SQL injection Issue";
- script_name(english:name["english"]);
-
- desc["english"] = "
- The remote host is running vBulletin, a web based bulletin board system written
- in PHP.
-
- The remote version of this software is vulnerable to a SQL injection issue. It is
- reported that versions 3.0.0 through to 3.0.3 are prone to this issue. An attacker
- may exploit this flaw to gain the control of the remote database.
-
- See also : http://secunia.com/advisories/12531/
- See also : http://www.securityfocus.com/archive/1/380871
- Solution : Upgrade to vBulletin 3.0.4 or newer
- Risk factor : High";
-
-
- script_description(english:desc["english"]);
-
- summary["english"] = "Checks the version of vBulletin";
-
- script_summary(english:summary["english"]);
-
- script_category(ACT_GATHER_INFO);
-
- script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
- family["english"] = "CGI abuses";
- script_family(english:family["english"]);
- script_dependencie("find_service.nes", "http_version.nasl");
- script_require_ports("Services/www", 80);
- exit(0);
- }
-
- # Check starts here
-
- include("http_func.inc");
- include("http_keepalive.inc");
-
-
-
- port = get_http_port(default:80);
-
- if(!get_port_state(port))exit(0);
- if ( ! can_host_php(port:port) ) exit(0);
-
-
- foreach dir (cgi_dirs())
- {
- req = http_get(item:dir + "/index.php", port:port);
- res = http_keepalive_send_recv(port:port, data:req);
- if ( res == NULL ) exit(0);
- if ( 'meta name="generator" content="vBulletin 3.0' >< res &&
- egrep(pattern:'<meta name="generator" content="vBulletin 3.0(\\.[0-3])?[^0-9]', string:res))
- {
- security_hole(port);
- exit(0);
- }
- }
-